Namespace - LJCNetCommon
Parameters
className - The class attribute.
id - The id attribute.
Returns
The common element attributes collection.
Syntax
C# |
public Attributes Attribs(String className = null, String id = null)
|
Gets common element attributes.
Example
C# |
var textState = new TextState();
var hb = new HTMLBuilder(textState);
var className = "className";
var id = "id";
Attributes attribs = hb.Attribs(className, id);
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.